home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Paparazzi!: Tales of Tinseltown
/
Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso
/
pprazia2.dir
/
01533_Script_1533
< prev
next >
Wrap
Text File
|
1995-05-21
|
986b
|
41 lines
on mouseDown
put "YesBtn" into f
put "YesBtnHL" into fHL
hiliter 12, f, fHL
puppetsound "button.aif"
updatestage
end
on mouseUp
global gTheDay, whichOutcome, whoIsIt, yesOrNo, gMoney, bribe, themoviename
set the castNum of sprite 12 = cast "YesBtn"
updatestage
if whoIsIt = "Skippy" then put "SkippyPayCont" into whichOutcome
if whoIsIt = "Phillip" then put "PhillipPayCont" into whichOutcome
if gmoney < bribe then
set yesOrNo = "no"
set the castNum of sprite 14 to cast "NotEnoughMoney"
updatestage
if whoIsIt = "Skippy" then put "SkippyMugCont" into whichOutcome
if whoIsIt = "Phillip" then put "PhillipNoPayCont" into whichOutcome
startTimer
repeat while the timer < 60
nothing
end repeat
go to the frame + 1
else
set yesOrNo = "yes"
set gMoney = gmoney - bribe
go to the frame + 1
end if
puppetsprite 3, false
puppetsound 0
updatestage
end